Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
teamcity-service-messages
Advanced tools
From the TeamCity documentation:
If TeamCity doesn't support your testing framework or build runner out of the box, you can still avail yourself of many TeamCity benefits by customizing your build scripts to interact with the TeamCity server. This makes a wide range of features available to any team regardless of their testing frameworks and runners. Some of these features include displaying real-time test results and customized statistics, changing the build status, and publishing artifacts before the build is finished.
npm install teamcity-service-messages --save
var tsm = require("teamcity-service-messages");
// It doesn't really make sense that it's chainable. WHATEVER.
tsm.testStarted({ name: "my test" }).testFinished({ name: "my test" });
// You'll more likely use it like this:
tsm.message({ text: "Finished step 1" });
// Do some stuff.
tsm.message({ text: "Finished step 2" });
##teamcity[testStarted name='my test' flowId='65345909446478' timestamp='2013-12-19T19:54:24.449Z']
##teamcity[testFinished name='my test' flowId='65345909446478' timestamp='2013-12-19T19:54:24.449Z']
blockOpened
/blockClosed
buildNumber
buildProblem
buildStatisticValue
buildStatus
compilationStarted
/compilationFinished
enableServiceMessages
/disableServiceMessages
importData
inspection
inspectionType
message
progressMessage
progressStart
/progressFinish
publishArtifacts
setParameter
testFinished
testIgnored
testMetadata
testStarted
/testFailed
testStdErr
testStdOut
testSuiteStarted
/testSuiteFinished
If you want the messages returned instead of printed to stdout, you can set tsm.stdout = false
.
The API will no longer be chainable, but instead, each method will return its generated message.
var tsm = require("teamcity-service-messages");
tsm.stdout = false;
typeof tsm.message("test"); // string
var Message = require("teamcity-service-messages").Message;
var message = new Message("testStarted", {
name: "my test",
});
console.log(message.toString());
##teamcity[testStarted name='my test' flowId='65345909446478' timestamp='2013-12-19T19:54:24.449Z']
0.1.12
0.1.11
0.1.10
0.1.9
0.1.8
0.1.7
escape
now returns '' for undefined
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Message
class moved to Message
namespace.0.0.1
Copyright (c) 2013 Aaron Forsander
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Generate TeamCity service messages.
The npm package teamcity-service-messages receives a total of 247,766 weekly downloads. As such, teamcity-service-messages popularity was classified as popular.
We found that teamcity-service-messages demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.